home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PROGRAMR / UPC12BS1.ZIP / LIB / CONFVARS.H < prev    next >
C/C++ Source or Header  |  1993-09-29  |  4KB  |  95 lines

  1. #ifndef CONFVARS_H
  2. #define CONFVARS_H
  3.  
  4. /*--------------------------------------------------------------------*/
  5. /*    Changes Copyright (c) 1989 by Andrew H. Derbyshire.             */
  6. /*                                                                    */
  7. /*    Changes Copyright (c) 1990-1993 by Kendra Electronic            */
  8. /*    Wonderworks.                                                    */
  9. /*                                                                    */
  10. /*    All rights reserved except those explicitly granted by the      */
  11. /*    UUPC/extended license agreement.                                */
  12. /*--------------------------------------------------------------------*/
  13.  
  14. /*--------------------------------------------------------------------*/
  15. /*                          RCS Information                           */
  16. /*--------------------------------------------------------------------*/
  17.  
  18. /*
  19.  *    $Id: confvars.h 1.10 1993/09/29 23:30:28 ahd Exp $
  20.  *
  21.  *    Revision history:
  22.  *    $Log: confvars.h $
  23.  *     Revision 1.10  1993/09/29  23:30:28  ahd
  24.  *     Add xqtRootDir for UUXQT
  25.  *
  26.  *     Revision 1.9  1993/09/29  04:56:11  ahd
  27.  *     Move priority variables to modem file
  28.  *
  29.  *     Revision 1.8  1993/09/20  04:51:31  ahd
  30.  *     TCP Support from Dave Watt
  31.  *     't' protocol support
  32.  *     OS/2 2.x support (BC++ 1.0 for OS/2 support)
  33.  *
  34.  *     Revision 1.7  1993/06/15  12:19:57  ahd
  35.  *     Save changed/pushed directory name for debugging
  36.  *
  37.  *     Revision 1.6  1993/06/13  14:12:29  ahd
  38.  *     Changes per Mike McLagan for outbound batched news support
  39.  *
  40.  *     Revision 1.5  1993/05/30  00:11:03  ahd
  41.  *     Add E_passwd and E_systems
  42.  *
  43.  *     Revision 1.4  1993/05/09  03:50:05  ahd
  44.  *     Support motd, banner strings in configuration
  45.  *
  46.  * Revision 1.3  1993/04/11  00:36:59  dmwatt
  47.  * Global edits for year, TEXT, etc.
  48.  *
  49.  * Revision 1.2  1993/04/04  05:01:08  ahd
  50.  * Add configurable OS/2 priority values
  51.  *
  52.  * Revision 1.1  1993/03/06  23:09:50  ahd
  53.  * Initial revision
  54.  *
  55.  */
  56.  
  57. #include <uutypes.h>
  58.  
  59. /*--------------------------------------------------------------------*/
  60. /*      Configuration file strings                                    */
  61. /*--------------------------------------------------------------------*/
  62.  
  63. extern char *E_name, *E_mailbox, *E_homedir;
  64. extern char *E_archivedir, *E_newsserv;                        /* news */
  65. extern char *E_mailbox, *E_homedir;
  66. extern char *E_maildir, *E_newsdir, *E_spooldir, *E_confdir;
  67. extern char *E_pubdir, *E_tempdir;
  68. extern char *E_nodename, *E_domain, *E_mailserv;
  69. extern char *E_fdomain;       /* Domain used in From: lines             */
  70. extern char *E_inmodem;
  71. extern char *E_editor, *E_pager;
  72. extern char *E_mailext, *E_backup;
  73. extern char *E_filesent, *E_signature;
  74. extern char *E_altsignature;                                   /* pdm   */
  75. extern char *E_aliases;                                        /* ahd   */
  76. extern char *E_organization, *E_replyto;                       /* ahd   */
  77. extern char *E_localdomain;                                    /* ahd   */
  78. extern char *E_postmaster;                                     /* ahd   */
  79. extern char *E_uuxqtpath;
  80. extern char **E_internal;
  81. extern char *E_charset;
  82. extern char *E_anonymous;
  83. extern char *E_version;
  84. extern char *E_uncompress;
  85. extern char *E_compress;         // GMM - Outbound batched news support
  86. extern char *E_banner;
  87. extern char *E_motd;
  88. extern char *E_systems;
  89. extern char *E_passwd;
  90. extern char *E_cwd;              // Never set by user, only program
  91. extern char *E_xqtRootDir;
  92. extern KEWSHORT E_maxhops;
  93.  
  94. #endif
  95.